home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / prog / asm_0_m.arj / 25.ASM next >
Assembly Source File  |  1987-05-07  |  411b  |  21 lines

  1. .radix    16
  2.         ;
  3. cseg    segment
  4.         assume    cs:cseg, ds:cseg
  5.         ;
  6.         video    equ    10    ; bios video interrupt
  7.         exit    equ    20    ; return to ccp routine
  8.         cgmo    equ    1111    ; char gen routine, load mono set
  9.         ;
  10.         org    100
  11.         ;
  12.         ; get pointer to rom character set (rom double dot set)
  13.         ;
  14. line25:        xor    bx, bx        ; load 0 block
  15.         mov    ax, cgmo
  16.         int    video        ; returns es:bp as pointer
  17.         ;
  18.         int    exit
  19. cseg    ends
  20.     end    line25
  21.